net/http.http2stream.state (field)

16 uses

	net/http (current package)
		h2_bundle.go#L4669: 	state            http2streamState
		h2_bundle.go#L4695: 		return st.state, st
		h2_bundle.go#L5288: 		switch st.state {
		h2_bundle.go#L5356: 		switch st.state {
		h2_bundle.go#L5368: 			st.state = http2stateHalfClosedLocal
		h2_bundle.go#L5697: 	if st.state == http2stateIdle || st.state == http2stateClosed {
		h2_bundle.go#L5698: 		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state))
		h2_bundle.go#L5700: 	st.state = http2stateClosed
		h2_bundle.go#L5962: 	st.state = http2stateHalfClosedRemote
		h2_bundle.go#L6021: 		if st.state == http2stateHalfClosedRemote {
		h2_bundle.go#L6190: 		state:     state,
		h2_bundle.go#L6490: 	if st.state != http2stateHalfClosedRemote && st.state != http2stateClosed {
		h2_bundle.go#L7165: 	if msg.parent.state != http2stateOpen && msg.parent.state != http2stateHalfClosedRemote {